home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / lib / man / reindex < prev   
Text File  |  1991-08-16  |  246b  |  12 lines

  1. #!/bin/csh -f
  2. #
  3. # Reindex the man pages.
  4. # Ken Shirriff 9/90
  5.  
  6. foreach i (`awk '/^\//{print $1}' /sprite/lib/man/config`)
  7.     echo $i
  8.     cd $i
  9. #Skip directories without an index file; e.g. sww man pages
  10.     if (-e index) man -i *.man > index
  11. end
  12.